home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Super Platinum 8
/
Shareware Super Platinum 8.iso
/
mac
/
PROGTOOL
/
FGL304C.ZIP;1
/
EXC.ARJ
/
FGDOC
/
EXAMPLES
/
C
/
06-04.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-01-24
|
419 b
|
25 lines
#include <fastgraf.h>
void main(void);
void main()
{
int new_mode, old_mode;
old_mode = fg_getmode();
new_mode = fg_automode();
fg_setmode(new_mode);
fg_initw();
fg_setworld(-10.0,10.0,-10.0,10.0);
fg_setcolor(15);
fg_movew(0.0,10.0);
fg_draww(0.0,-10.0);
fg_movew(-10.0,0.0);
fg_draww(10.0,0.0);
fg_waitkey();
fg_setmode(old_mode);
fg_reset();
}